home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / rtetc800.zip / UTILS800.ZIP / PIC2GIF.BAT < prev    next >
DOS Batch File  |  1992-09-09  |  292b  |  15 lines

  1. @echo off
  2. if not exist %1.pic goto error1
  3. if "%2" == "" goto error2
  4. pic2rgb %1
  5. if "%3" == "" pl286 rgb2gif.plb %1 %2 %2 %1
  6. if not "%3" == "" pl286 rgb2gif.plb %1 %2 %3 %1
  7. del /q %1.?8
  8. goto end
  9. :error1
  10. echo File %1.pic not found
  11. goto end
  12. :error2
  13. echo Missing width (height)
  14. :end
  15.